home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3863 / 3863.xpi / chrome / imacros.jar / content / smplcopy.xul < prev    next >
Extensible Markup Language  |  2008-10-31  |  2KB  |  46 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://imacros/skin/imacros.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog SYSTEM "chrome://imacros/locale/labels.dtd">
  6.  
  7. <dialog id="smplcopy_window" title="iMacros"
  8.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.         buttons="accept, cancel"
  10.         buttonlabelaccept="&imacros.keydlg6.button.yes;"
  11.         buttonlabelcancel="&imacros.keydlg6.button.no;"
  12.         ondialogaccept="return confirmCopy();"
  13.         ondialogcancel="return cancelCopy();">
  14.  
  15.   <script type="application/x-javascript"
  16.           src="chrome://imacros/content/utils.js" />
  17.   <script type="application/x-javascript"
  18.           src="chrome://imacros/content/smplcopy.js"/>
  19.   <vbox>
  20.     <groupbox>
  21.       <stack>
  22.         <description id="warning-description"
  23.                      maxwidth="400"
  24.                      style="padding-left: 40px">
  25.           Do you want to install the latest versions of the demo macros
  26.           and scripts (Old sample macros will be overwritten)?
  27.         </description>
  28.         <hbox align="center">
  29.           <image id="question-image"/>
  30.         </hbox>
  31.       </stack>
  32.       
  33.     </groupbox>
  34.     <groupbox  >
  35.       <caption label="Select folder for copying Demo Macros:"/>
  36.       <hbox>
  37.         <textbox id="demo-folder"
  38.                  
  39.                  flex="1"/>
  40.         <button class="browse"
  41.                 oncommand="browseForFolder();" />
  42.       </hbox>
  43.     </groupbox>
  44.   </vbox>
  45. </dialog>
  46.